home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / cxref_1_4a.lha / cpp / smakefile < prev    next >
Makefile  |  1998-02-17  |  473b  |  22 lines

  1. .y.c:
  2.     bison -y -l $*.y
  3.     @-delete >nil: $*.c
  4.     @rename y.tab.c $*.c
  5.  
  6. CFLAGS = optimize opttime optinline optschedule nostackcheck debug=line code=far data=faronly
  7. LFLAGS = noicons
  8.  
  9. OBJS =\
  10.     cccp.o cexp.o version.o alloca.o
  11.  
  12. LIBS =\
  13.     lib:scmnb.lib lib:scnb.lib lib:amiga.lib
  14.  
  15. cxref-cpp : $(OBJS)
  16.     slink lib:c.o $(OBJS) to $@.debug lib $(LIBS) $(LFLAGS) addsym \
  17.         map $@.map,fhx fwidth 32 pwidth 32 swidth 32 width 100
  18.     slink $@.debug to $@ nodebug noicons
  19.  
  20. cexp.o : cexp.c
  21.  
  22.